Remove accidentally committed debug code.
authorMatthias Clasen <maclas@gmx.de>
Tue, 3 Aug 2004 18:30:53 +0000 (18:30 +0000)
committerMatthias Clasen <matthiasc@src.gnome.org>
Tue, 3 Aug 2004 18:30:53 +0000 (18:30 +0000)
Tue Aug  3 14:29:49 2004  Matthias Clasen  <maclas@gmx.de>

* gtk/gtkcombobox.c (gtk_combo_box_menu_fill): Remove
accidentally committed debug code.

ChangeLog
ChangeLog.pre-2-10
ChangeLog.pre-2-6
ChangeLog.pre-2-8
gtk/gtkcombobox.c

index 0a7fd99100c35e3448b9e6e0dad8bc46c0336955..858c2275e08ae76b08c9097d319ab615bccf13b2 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Tue Aug  3 14:29:49 2004  Matthias Clasen  <maclas@gmx.de>
+
+       * gtk/gtkcombobox.c (gtk_combo_box_menu_fill): Remove 
+       accidentally committed debug code.
+
 Tue Aug  3 01:19:12 2004  Matthias Clasen  <maclas@gmx.de>
 
        * gtk/gtkcombobox.c (gtk_combo_box_relayout_item): Optimize 
index 0a7fd99100c35e3448b9e6e0dad8bc46c0336955..858c2275e08ae76b08c9097d319ab615bccf13b2 100644 (file)
@@ -1,3 +1,8 @@
+Tue Aug  3 14:29:49 2004  Matthias Clasen  <maclas@gmx.de>
+
+       * gtk/gtkcombobox.c (gtk_combo_box_menu_fill): Remove 
+       accidentally committed debug code.
+
 Tue Aug  3 01:19:12 2004  Matthias Clasen  <maclas@gmx.de>
 
        * gtk/gtkcombobox.c (gtk_combo_box_relayout_item): Optimize 
index 0a7fd99100c35e3448b9e6e0dad8bc46c0336955..858c2275e08ae76b08c9097d319ab615bccf13b2 100644 (file)
@@ -1,3 +1,8 @@
+Tue Aug  3 14:29:49 2004  Matthias Clasen  <maclas@gmx.de>
+
+       * gtk/gtkcombobox.c (gtk_combo_box_menu_fill): Remove 
+       accidentally committed debug code.
+
 Tue Aug  3 01:19:12 2004  Matthias Clasen  <maclas@gmx.de>
 
        * gtk/gtkcombobox.c (gtk_combo_box_relayout_item): Optimize 
index 0a7fd99100c35e3448b9e6e0dad8bc46c0336955..858c2275e08ae76b08c9097d319ab615bccf13b2 100644 (file)
@@ -1,3 +1,8 @@
+Tue Aug  3 14:29:49 2004  Matthias Clasen  <maclas@gmx.de>
+
+       * gtk/gtkcombobox.c (gtk_combo_box_menu_fill): Remove 
+       accidentally committed debug code.
+
 Tue Aug  3 01:19:12 2004  Matthias Clasen  <maclas@gmx.de>
 
        * gtk/gtkcombobox.c (gtk_combo_box_relayout_item): Optimize 
index ab71bf83bf0248dadeb4b8ed6b80410e4b824d35..01d79e86b5b9598e4853269a22b97d1087483f19 100644 (file)
@@ -3965,7 +3965,6 @@ void
 gtk_combo_box_set_wrap_width (GtkComboBox *combo_box,
                               gint         width)
 {
-  GTimer *timer;
   g_return_if_fail (GTK_IS_COMBO_BOX (combo_box));
   g_return_if_fail (width >= 0);
 
@@ -3973,16 +3972,8 @@ gtk_combo_box_set_wrap_width (GtkComboBox *combo_box,
     {
       combo_box->priv->wrap_width = width;
 
-  timer = g_timer_new ();
-  g_timer_start (timer);
-
       gtk_combo_box_check_appearance (combo_box);
-  g_timer_stop (timer);
-  g_print ("check appearance in %lf seconds\n", g_timer_elapsed (timer, NULL));
-  g_timer_reset (timer);
-  g_timer_start (timer);
       gtk_combo_box_relayout (combo_box);
-  g_print ("relayout in %lf seconds\n", g_timer_elapsed (timer, NULL));
       
       g_object_notify (G_OBJECT (combo_box), "wrap_width");
     }